home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / carello.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  63 lines

  1. #
  2. # (C) Michel Arboi <arboi@alussinan.org>
  3. #
  4. #
  5. # References:
  6. #
  7. # Date: Wed, 02 Oct 2002 17:10:21 +0100
  8. # From: "Matt Moore" <matt@westpoint.ltd.uk>
  9. # To: bugtraq@securityfocus.com, vulnwatch@vulnwatch.org
  10. # Subject: wp-02-0012: Carello 1.3 Remote File Execution (Updated 1/10/2002)
  11. #
  12. # http://www.westpoint.ltd.uk/advisories/wp-02-0012.txt
  13.  
  14.  
  15. if(description)
  16. {
  17.  script_id(11776);
  18.  script_version ("$Revision: 1.4 $");
  19.  
  20.  name["english"] = "Carello detection";
  21.  
  22.  script_name(english:name["english"]);
  23.  
  24.  desc["english"] = "
  25. Carello.dll was found on your web server. 
  26. Versions up to 1.3 of this web shopping cart allowed anybody
  27. to run arbitrary commands on your server.
  28.  
  29. *** Note that no attack was performed, and the version number was
  30. *** not checked, so this might be a false alert
  31.  
  32. Solution : Upgrade to the latest version if necessary
  33. Risk factor : High";
  34.  
  35.  script_description(english:desc["english"]);
  36.  
  37.  summary["english"] = "Checks for the presence of carello.dll";
  38.  
  39.  script_summary(english:summary["english"]);
  40.  
  41.  script_category(ACT_GATHER_INFO);
  42.  
  43.  script_copyright(english:"This script is Copyright (C) 2003 Michel Arboi");
  44.  family["english"] = "CGI abuses";
  45.  family["francais"] = "Abus de CGI";
  46.  script_family(english:family["english"], francais:family["francais"]);
  47.  script_dependencie("find_service.nes", "no404.nasl");
  48.  script_require_ports("Services/www", 80);
  49.  exit(0);
  50. }
  51.  
  52. #
  53. # Please note that it is possible to test this vulnerability, but
  54. # I suspect that Carello is not widely used, and I am lazy :-)
  55. include("http_func.inc");
  56. include("http_keepalive.inc");
  57. port = get_http_port(default:80);
  58.  
  59. res = is_cgi_installed_ka(item:"Carello.dll", port:port);
  60. if (res) security_warning(port);
  61.